VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing Namespace / ImageProcessingCommandFactory Class / CreateCommand Methods / CreateCommand<T>(VintasoftImage) Method
Syntax Requirements SeeAlso
In This Topic
    CreateCommand<T>(VintasoftImage) Method (ImageProcessingCommandFactory)
    In This Topic
    Creates a processing command to process specified image.
    Syntax
    'Declaration
    
    Public Overloads Shared Function CreateCommand<T
    Type of processing command.
    >( _
    ByVal image
    The image to process.
    As Vintasoft.Imaging.VintasoftImage _
    ) As T (Of T
    Type of processing command.
    As ProcessingCommandBase)
    public static T CreateCommand<T>(
    Vintasoft.Imaging.VintasoftImage image
    ) where T: ProcessingCommandBase
    public: static T* CreateCommand<T>(
    Vintasoft.Imaging.VintasoftImage* image
    ) where T: ProcessingCommandBase*
    generic<typename T>
    public:
    static T^ CreateCommand(
    Vintasoft.Imaging.VintasoftImage^ image
    ) where T: ProcessingCommandBase^

    Parameters

    image
    The image to process.

    Type Parameters

    T
    Type of processing command.

    Return Value

    A new instance of T or instance of type derived from T.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also